<?php declare(strict_types=1); namespace Doctrine\ORM\Mapping\Exception; use Doctrine\ORM\Exception\ORMException; final class UnknownGeneratorType extends ORMException { public static function create(int $generatorType): self { return new self('Unknown generator type: ' . $generatorType); } }